home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / gadgets / radiobutton.m < prev    next >
Encoding:
Text File  |  2001-10-28  |  1.4 KB  |  35 lines

  1. /*
  2. **  $VER: radiobutton.h 44.1 (19.10.1999)
  3. **  Includes Release 44.1
  4. **
  5. **  Definitions for the radiobutton.gadget BOOPSI class
  6. **
  7. **  (C) Copyright 1987-1999 Amiga, Inc.
  8. **      All Rights Reserved
  9. */
  10. /*****************************************************************************/
  11. //MODULE 'reaction/reaction','intuition/gadgetclass'
  12. /*****************************************************************************/
  13. /* Defines for the radiobutton node attributes.
  14.  */
  15. #define RBNA_Dummy    (TAG_USER+$020000)
  16. #define RBNA_UserData   (RBNA_Dummy+1)
  17. /* (APTR) User Data. */
  18. #define RBNA_Labels     (RBNA_Dummy+2)
  19. /* (STRPTR) Text string array of labels for MX buttons. */
  20. /*****************************************************************************/
  21. /* Additional attributes defined by the RadioButton class
  22.  */
  23. #define RADIOBUTTON_Dummy       (REACTION_Dummy + $14000)
  24. #define RADIOBUTTON_Labels      (RADIOBUTTON_Dummy+1)
  25. /* (struct List *) Radio Button Label List. */
  26. #define RADIOBUTTON_Strings       (RADIOBUTTON_Dummy+2)
  27. /* RESERVED - presently unsupported */
  28. #define RADIOBUTTON_Spacing       (RADIOBUTTON_Dummy+3)
  29. /* (WORD) Spacing between radio buttons */
  30. #define RADIOBUTTON_Selected    (RADIOBUTTON_Dummy+4)
  31. /* (WORD) selected radio button (OM_GET/OM_SET/OM_NOTIFY) */
  32. #define RADIOBUTTON_LabelPlace    (RADIOBUTTON_Dummy+5)
  33. /* (WORD) label location (OM_GET/OM_SET) */
  34. /*****************************************************************************/
  35.